type net/http.http2Flags

25 uses

	net/http (current package)
		h2_bundle.go#L1462: type http2Flags uint8
		h2_bundle.go#L1465: func (f http2Flags) Has(v http2Flags) bool {
		h2_bundle.go#L1472: 	http2FlagDataEndStream http2Flags = 0x1
		h2_bundle.go#L1473: 	http2FlagDataPadded    http2Flags = 0x8
		h2_bundle.go#L1476: 	http2FlagHeadersEndStream  http2Flags = 0x1
		h2_bundle.go#L1477: 	http2FlagHeadersEndHeaders http2Flags = 0x4
		h2_bundle.go#L1478: 	http2FlagHeadersPadded     http2Flags = 0x8
		h2_bundle.go#L1479: 	http2FlagHeadersPriority   http2Flags = 0x20
		h2_bundle.go#L1482: 	http2FlagSettingsAck http2Flags = 0x1
		h2_bundle.go#L1485: 	http2FlagPingAck http2Flags = 0x1
		h2_bundle.go#L1488: 	http2FlagContinuationEndHeaders http2Flags = 0x4
		h2_bundle.go#L1490: 	http2FlagPushPromiseEndHeaders http2Flags = 0x4
		h2_bundle.go#L1491: 	http2FlagPushPromisePadded     http2Flags = 0x8
		h2_bundle.go#L1494: var http2flagName = map[http2FrameType]map[http2Flags]string{
		h2_bundle.go#L1558: 	Flags http2Flags
		h2_bundle.go#L1595: 			name := http2flagName[h.Type][http2Flags(1<<i)]
		h2_bundle.go#L1642: 		Flags:    http2Flags(buf[4]),
		h2_bundle.go#L1740: func (f *http2Framer) startWrite(ftype http2FrameType, flags http2Flags, streamID uint32) {
		h2_bundle.go#L2091: 	var flags http2Flags
		h2_bundle.go#L2273: 	var flags http2Flags
		h2_bundle.go#L2502: 	var flags http2Flags
		h2_bundle.go#L2669: 	var flags http2Flags
		h2_bundle.go#L2768: 	var flags http2Flags
		h2_bundle.go#L2790: func (f *http2Framer) WriteRawFrame(t http2FrameType, flags http2Flags, streamID uint32, payload []byte) error {